1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 package com.sun.imageio.plugins.bmp;
27
28 import java.util.ListResourceBundle;
29 import javax.imageio.metadata.IIOMetadataFormat;
30 import javax.imageio.metadata.IIOMetadataFormatImpl;
31
32 public class BMPMetadataFormatResources extends ListResourceBundle {
33
34 public BMPMetadataFormatResources() {}
35
36 protected Object[][] getContents() {
37 return new Object[][] {
38
39
40 { "BMPVersion", "BMP version string" },
41 { "Width", "The width of the image" },
42 { "Height","The height of the image" },
43 { "BitsPerPixel", "" },
44 { "PixelsPerMeter", "Resolution in pixels per unit distance" },
45 { "X", "Pixels Per Meter along X" },
46 { "Y", "Pixels Per Meter along Y" },
47 { "ColorsUsed",
48 "Number of color indexes in the color table actually used" },
49 { "ColorsImportant",
50 "Number of color indexes considered important for display" },
51 { "Mask",
52 "Color masks; present for BI_BITFIELDS compression only"},
53
54 { "Intent", "Rendering intent" },
55 { "Palette", "The color palette" },
56
57 { "Red", "Red Mask/Color Palette" },
58 { "Green", "Green Mask/Color Palette/Gamma" },
59 { "Blue", "Blue Mask/Color Palette/Gamma" },
60 { "Alpha", "Alpha Mask/Color Palette/Gamma" },
61
62 { "ColorSpaceType", "Color Space Type" },
63
64 { "X", "The X coordinate of a point in XYZ color space" },
65 { "Y", "The Y coordinate of a point in XYZ color space" },
66 { "Z", "The Z coordinate of a point in XYZ color space" },
67 };
68 }
69 }